const google.golang.org/grpc/internal/transport.defaultWindowSize

12 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L499: 		sendQuota:     defaultWindowSize,
		controlbuf.go#L500: 		oiws:          defaultWindowSize,
		defaults.go#L28: 	defaultWindowSize = 65535
		defaults.go#L30: 	initialWindowSize             = defaultWindowSize // for an RPC
		http2_client.go#L307: 	if opts.InitialConnWindowSize >= defaultWindowSize {
		http2_client.go#L358: 	if opts.InitialWindowSize >= defaultWindowSize {
		http2_client.go#L416: 	if t.initialWindowSize != defaultWindowSize {
		http2_client.go#L434: 	if delta := uint32(icwz - defaultWindowSize); delta > 0 {
		http2_server.go#L183: 	if config.InitialWindowSize >= defaultWindowSize {
		http2_server.go#L188: 	if config.InitialConnWindowSize >= defaultWindowSize {
		http2_server.go#L192: 	if iwz != defaultWindowSize {
		http2_server.go#L213: 	if delta := uint32(icwz - defaultWindowSize); delta > 0 {